home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / unix / src / bcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-19  |  136 b   |  8 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. int bcmp(char *b1, char *b2, int length)
  5. {
  6.   return length == 0 ? 0 : memcmp(b2, b1, length);
  7. }
  8.